home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2002 #11
/
Amiga Plus CD - 2002 - No. 11.iso
/
Tools
/
ShareMailGiftware
/
AmigaTalk
/
general
/
UndefinedObject.st
< prev
Wrap
Text File
|
2002-10-27
|
312b
|
16 lines
"----------------------------------------------------------------"
"'nil' Should be the only Undefined Object in the system. "
"----------------------------------------------------------------"
Class UndefinedObject :Object
[
isNil
^ true
|
notNil
^ false
|
printString
^ 'nil'
]